#include using namespace std; void main(int argc, char* argv[]) { //argv - an array of c-style strings //argc - a count of the number of words in the argv list for(int i = 0; i < argc; i++) { cout << argv[i] << endl; } }